home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / disk / misc / catalogerv1_2e.lha / InstallCat < prev    next >
Text File  |  1995-10-26  |  1KB  |  76 lines

  1. ; $VER: Install Virus_Checker V1.0 (4 June 1993)
  2. ;This Install-script contains to Cataloger V1.2e (c)1995 by Axel Deising
  3.  
  4. ; ask where to install Cataloger_checker
  5. (set @default-dest
  6.  (askdir
  7.    (prompt "Please select the Directory you would like to Cataloger to be"
  8.        "installed. ")
  9.    (help @askdir-help)
  10.    (default "SYS:")
  11.  )
  12. )
  13.  
  14.  (set ziel @default-dest)
  15.  (set Catalogerdir (tackon ziel "Cataloger"))
  16. (if ( < (exists Catalogerdir (noreq)) 2)
  17.  (makedir Catalogerdir (prompt "Creating Cataloger Directory...")
  18.  (help @makedir-help)
  19.  (infos)
  20. )
  21. )
  22.  
  23.  (set Catalogerdircat (tackon Catalogerdir "Catalogs"))
  24. (if ( < (exists Catalogerdircat (noreq)) 2)
  25.  (makedir Catalogerdircat (prompt "Creating Cataloger Directory...")
  26.  (help @makedir-help)
  27.  (infos)
  28. )
  29. )
  30.  
  31. (working "Installing Cataloger")
  32. (copyfiles
  33.     (prompt "")
  34.     (help @copyfiles-help)
  35.     (source "Cataloger")
  36.     (dest Catalogerdir)
  37.     (infos)
  38. )
  39.  
  40. (working "Installing Cataloger Guide")
  41.  
  42.  
  43. (copyfiles
  44.     (prompt "")
  45.     (help @copyfiles-help)
  46.     (source "Cataloger.guide")
  47.     (dest Catalogerdir)
  48.     (confirm)
  49. )
  50.  
  51. (copyfiles
  52.     (prompt "")
  53.     (help @copyfiles-help)
  54.     (source "Cataloger.guide.info")
  55.     (dest Catalogerdir)
  56.     (confirm)
  57. )
  58.  
  59.  
  60. (copyfiles
  61.     (prompt "")
  62.     (help @copyfiles-help)
  63.     (source "Assigns.info")
  64.     (dest Catalogerdir)
  65. )
  66. (copyfiles
  67.     (prompt "")
  68.     (help @copyfiles-help)
  69.     (source "Assigns")
  70.     (dest Catalogerdir)
  71. )
  72.  
  73.  
  74.  
  75. (exit)
  76.